home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / blade10 / main.pas < prev    next >
Pascal/Delphi Source File  |  1995-12-22  |  597b  |  33 lines

  1. { This is a simple demo to show how to use the TBlinkLabel component for Delphi
  2.  
  3.   Please note: The labels don't blink while designing, only when the application is
  4.                actually running.
  5. }
  6. unit Main;
  7.  
  8. interface
  9.  
  10. uses
  11.     Classes, Controls, Forms, StdCtrls, Blabel;
  12.  
  13. type
  14.   TForm1 = class(TForm)
  15.     BlinkLabel1: TBlinkLabel;
  16.     BlinkLabel2: TBlinkLabel;
  17.     BlinkLabel3: TBlinkLabel;
  18.     BlinkLabel4: TBlinkLabel;
  19.   private
  20.     { Private declarations }
  21.   public
  22.     { Public declarations }
  23.   end;
  24.  
  25. var
  26.   Form1: TForm1;
  27.  
  28. implementation
  29.  
  30. {$R *.DFM}
  31.  
  32. end.
  33.